From cf026b25cc6e6c25d115850217d99f586699d24c Mon Sep 17 00:00:00 2001 From: Jim Blandy Date: Mon, 24 May 1993 02:32:33 +0000 Subject: [PATCH] * syssignal.h: Don't #include * alloc.c: #include , but before "config.h". --- src/alloc.c | 1 + src/syssignal.h | 6 +++++- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/src/alloc.c b/src/alloc.c index 80ae29f62e6..48117d4e356 100644 --- a/src/alloc.c +++ b/src/alloc.c @@ -17,6 +17,7 @@ You should have received a copy of the GNU General Public License along with GNU Emacs; see the file COPYING. If not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ +#include #include "config.h" #include "lisp.h" diff --git a/src/syssignal.h b/src/syssignal.h index 64a24e1e013..6a91f913568 100644 --- a/src/syssignal.h +++ b/src/syssignal.h @@ -19,7 +19,11 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ #ifdef POSIX_SIGNALS -#include +/* Don't #include . That header shouldalways be #included + before "config.h", because some configuration files (like s/hpux.h) + indicate that SIGIO doesn't work by #undef-ing SIGIO. If this file + #includes , then that will re-#define SIGIO and confuse + things. */ #define SIGMASKTYPE sigset_t -- 2.30.2